home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 June: Reference Library / Dev.CD Jun 96 RL / Dev.CD Jun 96 RL.toast / What's New? / Development Kits / Apple Game Sprockets DR1 / Examples / DroneZone / DZThumbprint.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-24  |  353 b   |  18 lines  |  [TEXT/CWIE]

  1. /*
  2.  *    File:        DZThumbprint.h
  3.  *    Author:        Dan Venolia
  4.  *
  5.  *    Copyright © 1996 Apple Computer, Inc.
  6.  */
  7.  
  8. #ifndef __DZThumbprint__
  9. #define __DZThumbprint__
  10.  
  11. typedef enum TThumbprint {
  12.     kThumbprint_Dead        = 'dead',
  13.     kThumbprint_SelfDrone    = 'self',
  14.     kThumbprint_AutoDrone    = 'auto',
  15.     kThumbprint_BulletDrone    = 'bllt'
  16. } TThumbprint;
  17.  
  18. #endif /* __DZThumbprint__ */